home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Personal Computer World 2009 February
/
PCWFEB09.iso
/
Software
/
Resources
/
General Utilities
/
ReNamer 5.40
/
ReNamer.exe
/
{app}
/
Scripts
/
Initialize renaming code.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
2007-02-13
|
346b
|
16 lines
// Boolean variables are set to False when
// they are compiled, so we can think of that
// fact as of the code not been Initialized.
var
Initialized: Boolean;
procedure Initialize;
begin
Initialized := True;
// Initialization code here
end;
begin
if not Initialized then Initialize;
// The main renaming code here
end.